home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 301-325 / disk_313 / uucp / uucp1.lzh / man / Passwd < prev    next >
Text File  |  1989-10-27  |  2KB  |  78 lines

  1.  
  2. NAME
  3.     GETTY:PASSWD
  4.  
  5. SYNOPSIS
  6.     -
  7.  
  8. DESCRIPTION
  9.     GETTY:PASSWD is similar to the UNIX /etc/passwd file and is
  10.     currently used by Getty to verify remote logins and run the
  11.     appropriate 'shell', which in most cases will be uucico.  The
  12.     format is:
  13.  
  14.     ------ start of GETTY:PASSWD -----
  15.  
  16.     # Put any comment here
  17.     #
  18.     # User,Password,Uid,GroupId,Finger-Info,Home-Dir,Command-To-Run
  19.  
  20.     bbs,*,10,0,BBS,ram:,mybbs:c/mybbs
  21.     foo,bar,23,2,The Guy,ram:,uucp:c/uucico
  22.     gaa,xxx,24,2,The Guy,ram:,uucp:c/uucico
  23.  
  24.     ------ end of UUCP:LIB/PASSWD -------
  25.  
  26.     The above example runs uucico when somebody logs in as 'foo'
  27.     with the proper password (bar).  Normally the user runs a
  28.     Getty from s:startup-sequence for each serial port he wishes
  29.     to allow logins on.
  30.  
  31.     The GETTY:PASSWD file combined with appropriate entries and
  32.     a running Getty allow arbitrary UUCP connections to be made
  33.     into your Amiga.
  34.  
  35.     Sendmail will add your finger info to the From: field of any
  36.     mail message.
  37.  
  38. FIELDS
  39.     User    =   user name, up to 8 characters
  40.  
  41.     Password=   password, up to 8 characters (uncrypted for now)
  42.             * = no password
  43.  
  44.     Uid    =   unique numerical id (don't use 0 please), this WILL
  45.             be used by some programs to find password entries.
  46.             Give each entry a different UID.
  47.  
  48.     Gid    =   not currently used, set to 2 (don't use 0).
  49.  
  50.     Finger    =   Finger information (your name).  Future sub fields
  51.             within the finger information will be separated by
  52.             colons (:).
  53.  
  54.     Home-Dir=   Directory from which to run the command
  55.  
  56.     Command =   Command to run.  This command CANNOT BE A BCPL PROGRAM.
  57.             Command is run with arguments you specify plus:
  58.  
  59.             -DEVICE devicename -UNIT unitname
  60.  
  61.             Where the devicename and unitname together make up
  62.             a serial port which the command should use for further
  63.             communications.  stdin and stdout are set to NULL:,
  64.             as is the console handler.
  65.  
  66.             (Getty accomplishes all of this)
  67.  
  68.             If there is a '*' infront of the command name,
  69.             then Getty will setup stdin and stdout using the
  70.             UUSER: device, allowing programs to use stdio
  71.             to talk to the serial device.
  72.  
  73.             See UUSER.MAN
  74.  
  75.  
  76.  
  77.  
  78.